West Midlands | Jan26 ITP | Ziad Ahmed | sprint 2 | Form Controls #1157
West Midlands | Jan26 ITP | Ziad Ahmed | sprint 2 | Form Controls #1157ZiadMakkawi wants to merge 6 commits intoCodeYourFuture:mainfrom
Conversation
✅ Deploy Preview for cyf-onboarding-module ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
So the reason why my code only shows a small section being edited .Because, my first commit i ended up commiting the wireframe files with the Form ones so i had to redo the commits and the Pull Request |
SlideGauge
left a comment
There was a problem hiding this comment.
Looks like no form is implemented in this PR, could you implement it please?
|
Please note that in CYF courses, the recommended way to inform the reviewer of your changes is to do both of the following:
|
|
The form changes weren't implemented because I accidentally deleted the commit history and pushed the version before the changes were added, resulting in an empty form. |
jayshreehajgude2012
left a comment
There was a problem hiding this comment.
You can use autocomplete property for form fields like name, email.
You can use validation message as title of the field.
|
The autocomplete attribute for form fields (such as name and email) and the inclusion of validation messages via the title attribute are they recommendations or strict requirements ? |
wilsonadenuga
left a comment
There was a problem hiding this comment.
Your current Lighthouse accessibility score is 95, while the requirement is 100. Please review the Lighthouse report and resolve the remaining accessibility issues to meet the required score.
Also, regarding form markup: the input + label pairing can be simplified across the codebase
<input type="radio" id="size-xxl" name="size" value="XXL" />
<label for="size-xxl">XXL</label>You can wrap the input inside the label:
<label>
<input type="radio" name="size" value="XXL" />
XXL
</label>|
I will make the changes. The form markup was made like this for better readability |
|
Changes look good 😎 |
|
Nice |

Learners, PR Template
Self checklist
Changelist